@charset "utf-8";
html,body {
    background: #fff;
    font-family: "Microsoft YaHei", "宋体";
    color: #000;
    font-size: 12px;
}
.errorTooltip {
    font-size: 0.6rem;
    position: absolute;
    z-index: 999;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.8);
    width: 80%;
    left: 10%;
    box-sizing: border-box;
    color: #fff;
    padding: 10px;
    text-align: center;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s;
    transform-origin: bottom;
    -webkit-transform-origin: bottom;
}
.errorTooltipShow {
    transform: scale(1);
    -webkit-transform: scale(1);
}
#container {
    min-height: 100%;
	margin: 0 auto;
	overflow: auto;
}
header {
    width: 100%;
    height: 1rem;
    background: #70892b;
    position: relative;
}
header h3{
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 1rem;
}
header h3:before {
    position: absolute;
    content: '';
    border-bottom: 1px dashed #a0b46b;
    height: 1px;
    width: 20%;
    left: 0.6rem;
    top: 50%;
}

header h3:after {
    position: absolute;
    content: '';
    border-bottom: 1px dashed #a0b46b;
    height: 1px;
    width: 20%;
    right: 0.6rem;
    top: 50%;
}
.centent {
    width: 80%;
    margin: 1rem auto;
}
.hk {
    color: #a2a4a5;
    line-height: 170%;
    font-size: 13px;
    margin-bottom: 0.3rem;
}
.shum {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}
.shum span {
    line-height: 0.6rem;
    margin-right: 0.2rem;
}
.shum input {
    width: 50%;
    height: 0.6rem;
    line-height: 0.6rem;
    border: 1px solid #5d5c5c;
    padding-left: 0.2rem;
    margin-right: 0.2rem;
}

.btn {
    background: #70892b;
    color: #fff;
    width: 2rem;
    height: 0.6rem;
    line-height: 0.6rem;
    text-align: center;
    font-size: 14px;
}

.res {
    text-align: center;
    line-height: 180%;
    border-bottom: 1px dashed #7a9239;
    border-top: 1px dashed #7a9239;
    padding: 0.3rem 0;
    margin-bottom: 0.3rem;
}

.res h3{
    width: 40%;
    font-size: 16px;
    color: #7a9239;
    border-bottom: 1px solid #7a9239;
    margin: 0 auto 0.3rem;
}

.res p {
    color: #70892b;
}

.res span {
    color: #000;
}
.fw {
    width: 70%;
    margin: 0 auto;
    text-align: left;
}
.info {
    color: #9a9c9d;
    line-height: 180%;
}

.info h3 {
    font-size: 16px;
    margin-top: 0.3rem;
}

.info img {
    width: 100%;
}
@media all and (min-width:1024px){
    
    .info img {
        width: 50%;
    }

    .res h3 {
        width: 10%;

    }
    
}